home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_06_08
/
v6n8047b.txt
< prev
next >
Wrap
Text File
|
1989-09-26
|
534b
|
24 lines
/* hr_quit.c - Disable the high resolution display mode by
* writing to the addresses of the appropriate soft switches.
* The value written is of no consequence. Returns void.
*
* Enviornment: Apple II, Aztec c65 V1.05B
* Programmer: Don Strayer
* Date: 15-Jun-88
*/
#include <hr_apple2.h,d2>
hr_quit()
{ char *swa; /* pointer to soft switch address */
swa = HR_OFF; /* disable hi res graphics mode */
*swa = '\0';
swa = HR_TXTON; /* enable text mode */
*swa = '\0';
return();
}